home *** CD-ROM | disk | FTP | other *** search
- % -----------------------------------------------------------------------------
- % Text file demonstration *TERMINATE PRESCRIPTION*
- % -----------------------------------------------------------------------------
- %
- % Version : 1.00
- % Filename : DATAFILE.TSL
- % Company : SerWiz Comm
- % Programmer : Bo Bendtsen
- % Module created : 06 Aug 1995
- % Latest revision : 06 Aug 1995
- % Language/version : Terminate Prescription 1.00
- % Remarks : Opens a datafile and read the first 19 bytes
- %
- % -----------------------------------------------------------------------------
-
- ClearScreen
- Window 1,1,80,20,6,0,23,23,27," Show text file "
- WriteAStr 2,0,31," Esc to Abort "
-
- PrintLn
- PrintLn "Opening TERMINAT.DAT read only"
- Open 1,"TERMINAT.DAT",0,0
- PrintLn "Reading Bytes 0-18"
- Set Result = Read(1,19)
- PrintLn "Result = ",Result
- Close 1
-
- Waitenter
-
- RemoveWindow
-
-